Get all judge rounds of an entry round
Each entry round has one or more judge rounds. This endpoint retrieves a list of all judge rounds belonging to the given entry round.
info
You can find the identifier of an entry round by looking at the "id" property returned from the /entry-rounds endpoint.
curl https://platform.younoodle.com/client-api/v1/competition/my_competition/entry-rounds/my_entry_round/judge-rounds \
-H 'YouNoodle-API-Key: 56f9bbec9bc614e351e5eea2ea851e31' \
-H 'Accept: application/json'
The above command returns JSON structured like this:
{
"object" => "list",
"count" => 2,
"page" => 1,
"has_more" => false,
"data": [
{
"id": "honey_badger_judging_1",
"object": "judge_round",
"url": "/client-api/v1/competition/the_honey_badger_challenge/entry-rounds/the_honey_badger_challenge_1/judge-rounds/honey_badger_judging_1",
"name": "Honey Badger Judge Round 1",
"deadline_at": 1364428799,
"entries": "/client-api/v1/competition/the_honey_badger_challenge/judge-rounds/honey_badger_judging_1/entries",
"number_of_entries": 234,
"entries_judged": 200,
"judging_progress": 0.85
},
{
"id": "honey_badger_judging_2",
"object": "judge_round",
"url": "/client-api/v1/competition/the_honey_badger_challenge/entry-rounds/the_honey_badger_challenge_1/judge-rounds/honey_badger_judging_2",
"name": "Honey Badger Judge Round 2",
"deadline_at": 1364458463,
"entries": "/client-api/v1/competition/the_honey_badger_challenge/judge-rounds/honey_badger_judging_2/entries",
"number_of_entries": 453,
"entries_judged": 100,
"judging_progress": 0.22
}
]
}
HTTP Request
GET https://platform.younoodle.com/client-api/v1/competition/<id>/entry-rounds/<entry-round-id>
URL Parameters
| Parameter | Description |
|---|---|
| id | Your competition identifier |
| entry-round-id | The entry round identifier whose judge rounds you want to access |
Query parameters
Add ?page=n as a request parameter to page through the data.